* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
  color: #1a1a1a;
  line-height: 1.6;
}

section {
  padding: 70px 8%;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  border-radius: 0 0 60px 60px;
}

.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: white; /* 👈 hero heading white */
}

.hero p {
  opacity: 0.9;
  font-size: 18px;
}

.hero-image img {
  width: 420px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* SECTION HEADINGS – YELLOW (hero ko affect nahi karega) */
.highlights h2,
.locations h2,
.pricing h2,
.documents h2,
.about h2,
.cta h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #facc15; /* 👈 yellow */
}

/* ABOUT SECTION */
.about {
  background: #ffffff;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.about .lead {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 25px;
  text-align: center;
}

.about p {
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: center;
}

/* CARD GRID FOR HIGHLIGHTS & LOCATIONS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 15px auto;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-size: 16px;
  color: #374151;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.price-card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price {
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
  color: #2563eb;
}

.tags {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tags span {
  background: #ecfdf5;
  color: #16a34a;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

/* DOCUMENTS */
.documents ul {
  max-width: 500px;
  margin: auto;
  list-style: none;
  padding-left: 0;
}

.documents li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

/* CTA */
.cta {
  text-align: center;
  background: #2563eb;
  color: white;
  border-radius: 40px;
  padding: 40px 20px;
}

.cta p {
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.6;
}

/* CTA BUTTONS */
.cta-buttons {
  margin-top: 25px;
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.call-btn {
  background: #33b5e5;
  color: white;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-3px);
}
/* MOBILE FIX */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    border-radius: 0 0 40px 40px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
  }
}
.tagline {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

  .go-home-btn {
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

}
